home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VQFATTR.S
< prev
next >
Wrap
Text File
|
1993-03-26
|
1KB
|
43 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Inquire fill area attributes.
;*------------------------------------------------------------------------
globl _vqf_attributes
_vqf_attributes:
; .cargs #8,handle.w,attrib.l
handle = 8
attrib = 10
link a6,#-10 ;* Allocate intout[5].
; VContrl #36
move.w handle(a6),-(sp) ; contrl[6]
clr.l -(sp) ; contrl[5,4]
clr.l -(sp) ; contrl[3,2]
clr.w -(sp) ; contrl[1]
move.w #36,-(sp) ; contrl[0]
subq.l #4,sp ;* -> ptsout
pea -10(a6) ;* -> intout
subq.l #8,sp ;* -> ptsin, intin
pea 16(sp) ;* -> contrl
move.l sp,d1
jsr vditrap
move.l attrib(a6),a0 ;* Return values in attrib array
lea -10(a6),a1 ;* from 1st 4 elements of intout.
move.l (a1)+,(a0)+ ;* attr[0]=intout[0],attr[1]=intout[1]
move.l (a1)+,(a0)+ ;* attr[2]=intout[2],attr[3]=intout[3]
unlk a6
rts
end